home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / pascal / lzw4p.exe / DUMMY_IO.PAS < prev    next >
Pascal/Delphi Source File  |  1993-02-25  |  189b  |  15 lines

  1. unit DUMMY_IO;
  2.  
  3. interface
  4.  
  5. function Dummy(TheByte : Byte) : Integer;
  6.  
  7. implementation
  8.  
  9. function Dummy(TheByte : Byte) : Integer;
  10. begin
  11.   (* into the bit bucket *)
  12. end;
  13.  
  14. end.
  15.